POV-Ray : Newsgroups : povray.general : Formula please : Re: Formula please Server Time
5 Aug 2024 10:22:27 EDT (-0400)
  Re: Formula please  
From: Greg M  Johnson
Date: 1 Oct 2002 12:51:46
Message: <3d99d2a2$1@news.povray.org>
#version 3.5;
#include "colors.inc"
#include "functions.inc"

camera {
 location < 0,20,45>
 look_at < 0, 0, 0>
}

light_source {<50,5,0> color White}
light_source {<-50, 150,-75> color White*0.35}

background { color <0.094,0.184,0.337> }

#declare arrr=function{pow((pow(x,2)+pow(z,2)),0.25)}

isosurface {
 function {y- sin(0.1+100/arrr(x,y,z))}
        threshold 0
 max_gradient 1.05
 contained_by{ box {-100,100}}
        accuracy      0.0001
 pigment{rgb <.6,.6,.2>}
 finish{ambient 0.3}
}
>
>


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.